From 30efc7f5f073a8a6126d9d162b07080f6ebb1242 Mon Sep 17 00:00:00 2001 From: Keir Fraser Date: Wed, 7 Nov 2007 14:53:32 +0000 Subject: [PATCH] x86, hvm: Fix typo in no-missed-tick-accounting timer mode. From: Dave Winchell Signed-off-by: Keir Fraser --- xen/arch/x86/hvm/vpt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xen/arch/x86/hvm/vpt.c b/xen/arch/x86/hvm/vpt.c index b1bd111f19..7199fdf674 100644 --- a/xen/arch/x86/hvm/vpt.c +++ b/xen/arch/x86/hvm/vpt.c @@ -59,7 +59,7 @@ static void pt_process_missed_ticks(struct periodic_time *pt) if ( mode_is(pt->vcpu->domain, no_missed_tick_accounting) ) { pt->pending_intr_nr = 1; - pt->scheduled = now + pt->scheduled; + pt->scheduled = now + pt->period; } else { -- 2.30.2